1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

This won't be pushed either

mysql-test/t/handler.test:
  LIMIT tests
sql/mysql_priv.h:
  HANDLER ... LIMIT added
sql/sql_handler.cc:
  HANDLER ... LIMIT added
sql/sql_parse.cc:
  HANDLER ... LIMIT added
sql/sql_yacc.yy:
  HANDLER ... LIMIT added
This commit is contained in:
unknown
2001-04-09 15:37:19 +02:00
parent cb2fe473f2
commit 9ba069761a
5 changed files with 99 additions and 75 deletions

View File

@ -2010,7 +2010,8 @@ mysql_execute_command(void)
if (check_db_used(thd,tables) || check_table_access(thd,SELECT_ACL, tables))
goto error;
res = mysql_ha_read(thd, tables, lex->ha_read_mode,
lex->backup_dir, lex->insert_list, lex->ha_rkey_mode);
lex->backup_dir, lex->insert_list, lex->ha_rkey_mode,
lex->select_limit, lex->offset_limit);
break;
case SQLCOM_BEGIN: