~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Brian Aker
  • Date: 2010-07-09 21:43:25 UTC
  • mfrom: (1643.5.1 dr-bug-600624)
  • Revision ID: brian@gaz-20100709214325-4rllc5yyo6bku5sh
Merge Prafulla Tekawade

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
#include "config.h"
17
17
 
18
18
#define DRIZZLE_LEX 1
19
19
 
20
 
#include "drizzled/item/num.h"
21
 
#include "drizzled/abort_exception.h"
22
20
#include <drizzled/my_hash.h>
23
21
#include <drizzled/error.h>
24
22
#include <drizzled/nested_join.h>
34
32
#include <drizzled/item/cmpfunc.h>
35
33
#include <drizzled/item/null.h>
36
34
#include <drizzled/session.h>
37
 
#include <drizzled/session/cache.h>
38
35
#include <drizzled/sql_load.h>
39
36
#include <drizzled/lock.h>
40
37
#include <drizzled/select_send.h>
42
39
#include <drizzled/statement.h>
43
40
#include <drizzled/statement/alter_table.h>
44
41
#include "drizzled/probes.h"
 
42
#include "drizzled/session_list.h"
45
43
#include "drizzled/global_charset_info.h"
46
44
 
47
45
#include "drizzled/plugin/logging.h"
48
46
#include "drizzled/plugin/query_rewrite.h"
49
 
#include "drizzled/plugin/query_cache.h"
50
47
#include "drizzled/plugin/authorization.h"
51
48
#include "drizzled/optimizer/explain_plan.h"
52
49
#include "drizzled/pthread_globals.h"
53
 
#include "drizzled/plugin/event_observer.h"
54
 
#include "drizzled/visibility.h"
55
50
 
56
51
#include <limits.h>
57
52
 
58
53
#include <bitset>
59
54
#include <algorithm>
60
 
#include <boost/date_time.hpp>
 
55
 
61
56
#include "drizzled/internal/my_sys.h"
62
57
 
63
58
using namespace std;
70
65
/* Prototypes */
71
66
bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize);
72
67
static bool parse_sql(Session *session, Lex_input_stream *lip);
73
 
void parse(Session *session, const char *inBuf, uint32_t length);
 
68
void mysql_parse(Session *session, const char *inBuf, uint32_t length);
74
69
 
75
70
/**
76
71
  @defgroup Runtime_Environment Runtime Environment
80
75
extern size_t my_thread_stack_size;
81
76
extern const CHARSET_INFO *character_set_filesystem;
82
77
 
83
 
namespace
84
 
{
85
 
 
86
 
static const std::string command_name[COM_END+1]={
87
 
  "Sleep",
88
 
  "Quit",
89
 
  "Init DB",
90
 
  "Query",
91
 
  "Shutdown",
92
 
  "Connect",
93
 
  "Ping",
94
 
  "Error"  // Last command number
 
78
const LEX_STRING command_name[COM_END+1]={
 
79
  { C_STRING_WITH_LEN("Sleep") },
 
80
  { C_STRING_WITH_LEN("Quit") },
 
81
  { C_STRING_WITH_LEN("Init DB") },
 
82
  { C_STRING_WITH_LEN("Query") },
 
83
  { C_STRING_WITH_LEN("Shutdown") },
 
84
  { C_STRING_WITH_LEN("Connect") },
 
85
  { C_STRING_WITH_LEN("Ping") },
 
86
  { C_STRING_WITH_LEN("Error") }  // Last command number
95
87
};
96
88
 
97
 
}
98
 
 
99
89
const char *xa_state_names[]={
100
90
  "NON-EXISTING", "ACTIVE", "IDLE", "PREPARED"
101
91
};
114
104
*/
115
105
bitset<CF_BIT_SIZE> sql_command_flags[SQLCOM_END+1];
116
106
 
117
 
const std::string &getCommandName(const enum_server_command& command)
118
 
{
119
 
  return command_name[command];
120
 
}
121
 
 
122
107
void init_update_queries(void)
123
108
{
124
109
  uint32_t x;
183
168
  bool error= 0;
184
169
  Query_id &query_id= Query_id::get_query_id();
185
170
 
186
 
  DRIZZLE_COMMAND_START(session->thread_id, command);
 
171
  DRIZZLE_COMMAND_START(session->thread_id,
 
172
                        command);
187
173
 
188
174
  session->command= command;
189
175
  session->lex->sql_command= SQLCOM_END; /* to avoid confusing VIEW detectors */
196
182
    break;
197
183
  /* Increase id and count all other statements. */
198
184
  default:
199
 
    session->status_var.questions++;
 
185
    statistic_increment(session->status_var.questions, &LOCK_status);
200
186
    query_id.next();
201
187
  }
202
188
 
203
 
  /* @todo set session->lex->sql_command to SQLCOM_END here */
 
189
  /* TODO: set session->lex->sql_command to SQLCOM_END here */
204
190
 
205
191
  plugin::Logging::preDo(session);
206
 
  if (unlikely(plugin::EventObserver::beforeStatement(*session)))
207
 
  {
208
 
    // We should do something about an error...
209
 
  }
210
192
 
211
193
  session->server_status&=
212
194
           ~(SERVER_QUERY_NO_INDEX_USED | SERVER_QUERY_NO_GOOD_INDEX_USED);
221
203
 
222
204
    string tmp(packet, packet_length);
223
205
 
224
 
    identifier::Schema identifier(tmp);
 
206
    SchemaIdentifier identifier(tmp);
225
207
 
226
 
    if (not change_db(session, identifier))
 
208
    if (not mysql_change_db(session, identifier))
227
209
    {
228
210
      session->my_ok();
229
211
    }
231
213
  }
232
214
  case COM_QUERY:
233
215
  {
234
 
    if (not session->readAndStoreQuery(packet, packet_length))
 
216
    if (! session->readAndStoreQuery(packet, packet_length))
235
217
      break;                                    // fatal error is set
236
 
    DRIZZLE_QUERY_START(session->getQueryString()->c_str(),
 
218
    DRIZZLE_QUERY_START(session->query.c_str(),
237
219
                        session->thread_id,
238
 
                        const_cast<const char *>(session->schema()->c_str()));
 
220
                        const_cast<const char *>(session->db.empty() ? "" : session->db.c_str()));
239
221
 
240
 
    parse(session, session->getQueryString()->c_str(), session->getQueryString()->length());
 
222
    plugin::QueryRewriter::rewriteQuery(session->db, session->query);
 
223
    mysql_parse(session, session->query.c_str(), session->query.length());
241
224
 
242
225
    break;
243
226
  }
248
231
    break;
249
232
  case COM_SHUTDOWN:
250
233
  {
251
 
    session->status_var.com_other++;
 
234
    status_var_increment(session->status_var.com_other);
252
235
    session->my_eof();
253
236
    session->close_thread_tables();                     // Free before kill
254
237
    kill_drizzle();
256
239
    break;
257
240
  }
258
241
  case COM_PING:
259
 
    session->status_var.com_other++;
 
242
    status_var_increment(session->status_var.com_other);
260
243
    session->my_ok();                           // Tell client we are alive
261
244
    break;
262
245
  case COM_SLEEP:
270
253
  /* If commit fails, we should be able to reset the OK status. */
271
254
  session->main_da.can_overwrite_status= true;
272
255
  TransactionServices &transaction_services= TransactionServices::singleton();
273
 
  transaction_services.autocommitOrRollback(*session, session->is_error());
 
256
  transaction_services.autocommitOrRollback(session, session->is_error());
274
257
  session->main_da.can_overwrite_status= false;
275
258
 
276
259
  session->transaction.stmt.reset();
282
265
    if (! session->main_da.is_set())
283
266
      session->send_kill_message();
284
267
  }
285
 
  if (session->getKilled() == Session::KILL_QUERY || session->getKilled() == Session::KILL_BAD_DATA)
 
268
  if (session->killed == Session::KILL_QUERY || session->killed == Session::KILL_BAD_DATA)
286
269
  {
287
 
    session->setKilled(Session::NOT_KILLED);
288
 
    session->setAbort(false);
 
270
    session->killed= Session::NOT_KILLED;
 
271
    session->mysys_var->abort= 0;
289
272
  }
290
273
 
291
274
  /* Can not be true, but do not take chances in production. */
295
278
  {
296
279
  case Diagnostics_area::DA_ERROR:
297
280
    /* The query failed, send error to log and abort bootstrap. */
298
 
    session->getClient()->sendError(session->main_da.sql_errno(),
 
281
    session->client->sendError(session->main_da.sql_errno(),
299
282
                               session->main_da.message());
300
283
    break;
301
284
 
302
285
  case Diagnostics_area::DA_EOF:
303
 
    session->getClient()->sendEOF();
 
286
    session->client->sendEOF();
304
287
    break;
305
288
 
306
289
  case Diagnostics_area::DA_OK:
307
 
    session->getClient()->sendOK();
 
290
    session->client->sendOK();
308
291
    break;
309
292
 
310
293
  case Diagnostics_area::DA_DISABLED:
312
295
 
313
296
  case Diagnostics_area::DA_EMPTY:
314
297
  default:
315
 
    session->getClient()->sendOK();
 
298
    session->client->sendOK();
316
299
    break;
317
300
  }
318
301
 
323
306
  session->close_thread_tables();
324
307
 
325
308
  plugin::Logging::postDo(session);
326
 
  if (unlikely(plugin::EventObserver::afterStatement(*session)))
327
 
  {
328
 
    // We should do something about an error...
329
 
  }
330
309
 
331
310
  /* Store temp state for processlist */
332
311
  session->set_proc_info("cleaning up");
333
312
  session->command= COM_SLEEP;
334
 
  session->resetQueryString();
 
313
  memset(session->process_list_info, 0, PROCESS_LIST_WIDTH);
 
314
  session->query.clear();
335
315
 
336
316
  session->set_proc_info(NULL);
337
317
  session->mem_root->free_root(MYF(memory::KEEP_PREALLOC));
378
358
                           const string& schema_table_name)
379
359
{
380
360
  LEX_STRING db, table;
381
 
  bitset<NUM_OF_TABLE_OPTIONS> table_options;
382
361
  /*
383
362
     We have to make non const db_name & table_name
384
363
     because of lower_case_table_names
387
366
  session->make_lex_string(&table, schema_table_name, false);
388
367
 
389
368
  if (! sel->add_table_to_list(session, new Table_ident(db, table),
390
 
                               NULL, table_options, TL_READ))
 
369
                               NULL, 0, TL_READ))
391
370
  {
392
371
    return true;
393
372
  }
442
421
    true        Error
443
422
*/
444
423
 
445
 
static int execute_command(Session *session)
 
424
static int
 
425
mysql_execute_command(Session *session)
446
426
{
447
427
  bool res= false;
448
428
  LEX  *lex= session->lex;
450
430
  Select_Lex *select_lex= &lex->select_lex;
451
431
  /* list of all tables in query */
452
432
  TableList *all_tables;
 
433
  /* A peek into the query string */
 
434
  size_t proc_info_len= session->query.length() > PROCESS_LIST_WIDTH ?
 
435
                        PROCESS_LIST_WIDTH : session->query.length();
 
436
 
 
437
  memcpy(session->process_list_info, session->query.c_str(), proc_info_len);
 
438
  session->process_list_info[proc_info_len]= '\0';
453
439
 
454
440
  /*
455
441
    In many cases first table of main Select_Lex have special meaning =>
488
474
 
489
475
  assert(session->transaction.stmt.hasModifiedNonTransData() == false);
490
476
 
491
 
  if (! (session->server_status & SERVER_STATUS_AUTOCOMMIT)
492
 
      && ! session->inTransaction()
493
 
      && lex->statement->isTransactional())
494
 
  {
495
 
    if (session->startTransaction() == false)
496
 
    {
497
 
      my_error(drizzled::ER_UNKNOWN_ERROR, MYF(0));
498
 
      return true;
499
 
    }
500
 
  }
501
 
 
502
477
  /* now we are ready to execute the statement */
503
478
  res= lex->statement->execute();
 
479
 
504
480
  session->set_proc_info("query end");
 
481
 
505
482
  /*
506
483
    The return value for ROW_COUNT() is "implementation dependent" if the
507
484
    statement is not DELETE, INSERT or UPDATE, but -1 is what JDBC and ODBC
515
492
 
516
493
  return (res || session->is_error());
517
494
}
 
495
 
518
496
bool execute_sqlcom_select(Session *session, TableList *all_tables)
519
497
{
520
498
  LEX   *lex= session->lex;
527
505
      param->select_limit=
528
506
        new Item_int((uint64_t) session->variables.select_limit);
529
507
  }
530
 
 
531
 
  if (all_tables
532
 
      && ! (session->server_status & SERVER_STATUS_AUTOCOMMIT)
533
 
      && ! session->inTransaction()
534
 
      && ! lex->statement->isShow())
535
 
  {
536
 
    if (session->startTransaction() == false)
537
 
    {
538
 
      my_error(drizzled::ER_UNKNOWN_ERROR, MYF(0));
539
 
      return true;
540
 
    }
541
 
  }
542
 
 
543
508
  if (not (res= session->openTablesLock(all_tables)))
544
509
  {
545
510
    if (lex->describe)
575
540
    {
576
541
      if (!result && !(result= new select_send()))
577
542
        return true;
578
 
 
579
 
      /* Init the Query Cache plugin */
580
 
      plugin::QueryCache::prepareResultset(session); 
581
543
      res= handle_select(session, lex, result, 0);
582
 
      /* Send the Resultset to the cache */
583
 
      plugin::QueryCache::setResultset(session); 
584
 
 
585
544
      if (result != lex->result)
586
545
        delete result;
587
546
    }
624
583
 
625
584
 
626
585
void
627
 
init_select(LEX *lex)
 
586
mysql_init_select(LEX *lex)
628
587
{
629
588
  Select_Lex *select_lex= lex->current_select;
630
589
  select_lex->init_select();
638
597
 
639
598
 
640
599
bool
641
 
new_select(LEX *lex, bool move_down)
 
600
mysql_new_select(LEX *lex, bool move_down)
642
601
{
643
602
  Select_Lex *select_lex;
644
603
  Session *session= lex->session;
645
604
 
646
605
  if (!(select_lex= new (session->mem_root) Select_Lex()))
647
 
    return true;
648
 
 
 
606
    return(1);
649
607
  select_lex->select_number= ++session->select_number;
650
608
  select_lex->parent_lex= lex; /* Used in init_query. */
651
609
  select_lex->init_query();
652
610
  select_lex->init_select();
653
611
  lex->nest_level++;
654
 
 
655
612
  if (lex->nest_level > (int) MAX_SELECT_NESTING)
656
613
  {
657
614
    my_error(ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT,MYF(0),MAX_SELECT_NESTING);
658
615
    return(1);
659
616
  }
660
 
 
661
617
  select_lex->nest_level= lex->nest_level;
662
618
  if (move_down)
663
619
  {
685
641
    if (lex->current_select->order_list.first && !lex->current_select->braces)
686
642
    {
687
643
      my_error(ER_WRONG_USAGE, MYF(0), "UNION", "order_st BY");
688
 
      return true;
 
644
      return(1);
689
645
    }
690
 
 
691
646
    select_lex->include_neighbour(lex->current_select);
692
647
    Select_Lex_Unit *unit= select_lex->master_unit();
693
 
 
694
 
    if (not unit->fake_select_lex && unit->add_fake_select_lex(lex->session))
695
 
      return true;
696
 
 
 
648
    if (!unit->fake_select_lex && unit->add_fake_select_lex(lex->session))
 
649
      return(1);
697
650
    select_lex->context.outer_context=
698
651
                unit->first_select()->context.outer_context;
699
652
  }
706
659
    list
707
660
  */
708
661
  select_lex->context.resolve_in_select_list= true;
709
 
 
710
 
  return false;
 
662
  return(0);
711
663
}
712
664
 
713
665
/**
720
672
  @param var_name               Variable name
721
673
*/
722
674
 
723
 
void create_select_for_variable(Session *session, const char *var_name)
 
675
void create_select_for_variable(const char *var_name)
724
676
{
 
677
  Session *session;
725
678
  LEX *lex;
726
679
  LEX_STRING tmp, null_lex_string;
727
680
  Item *var;
728
681
  char buff[MAX_SYS_VAR_LENGTH*2+4+8];
729
682
  char *end= buff;
730
683
 
 
684
  session= current_session;
731
685
  lex= session->lex;
732
 
  init_select(lex);
 
686
  mysql_init_select(lex);
733
687
  lex->sql_command= SQLCOM_SELECT;
734
688
  tmp.str= (char*) var_name;
735
689
  tmp.length=strlen(var_name);
744
698
    var->set_name(buff, end-buff, system_charset_info);
745
699
    session->add_item_to_list(var);
746
700
  }
 
701
  return;
747
702
}
748
703
 
749
704
 
755
710
  @param       length  Length of the query text
756
711
*/
757
712
 
758
 
void parse(Session *session, const char *inBuf, uint32_t length)
 
713
void mysql_parse(Session *session, const char *inBuf, uint32_t length)
759
714
{
760
 
  session->lex->start(session);
761
 
 
 
715
  lex_start(session);
762
716
  session->reset_for_next_command();
763
 
  /* Check if the Query is Cached if and return true if yes
764
 
   * TODO the plugin has to make sure that the query is cacheble
765
 
   * by setting the query_safe_cache param to TRUE
766
 
   */
767
 
  bool res= true;
768
 
  if (plugin::QueryCache::isCached(session))
769
 
  {
770
 
    res= plugin::QueryCache::sendCachedResultset(session);
771
 
  }
772
 
  if (not res)
773
 
  {
774
 
    return;
775
 
  }
 
717
 
776
718
  LEX *lex= session->lex;
 
719
 
777
720
  Lex_input_stream lip(session, inBuf, length);
 
721
 
778
722
  bool err= parse_sql(session, &lip);
 
723
 
779
724
  if (!err)
780
725
  {
781
726
    {
782
 
      if (not session->is_error())
 
727
      if (! session->is_error())
783
728
      {
784
 
        DRIZZLE_QUERY_EXEC_START(session->getQueryString()->c_str(),
 
729
        DRIZZLE_QUERY_EXEC_START(session->query.c_str(),
785
730
                                 session->thread_id,
786
 
                                 const_cast<const char *>(session->schema()->c_str()));
 
731
                                 const_cast<const char *>(session->db.empty() ? "" : session->db.c_str()));
787
732
        // Implement Views here --Brian
 
733
 
788
734
        /* Actually execute the query */
789
 
        try 
790
 
        {
791
 
          execute_command(session);
 
735
        try {
 
736
          mysql_execute_command(session);
792
737
        }
793
738
        catch (...)
794
739
        {
795
740
          // Just try to catch any random failures that could have come
796
741
          // during execution.
797
 
          DRIZZLE_ABORT;
798
742
        }
799
743
        DRIZZLE_QUERY_EXEC_DONE(0);
800
744
      }
804
748
  {
805
749
    assert(session->is_error());
806
750
  }
 
751
 
807
752
  lex->unit.cleanup();
808
753
  session->set_proc_info("freeing items");
809
754
  session->end_statement();
810
755
  session->cleanup_after_query();
811
 
  session->set_end_timer();
812
756
}
813
757
 
814
758
 
868
812
    */
869
813
    if (default_value->type() == Item::FUNC_ITEM &&
870
814
        !(((Item_func*)default_value)->functype() == Item_func::NOW_FUNC &&
871
 
         (type == DRIZZLE_TYPE_TIMESTAMP or type == DRIZZLE_TYPE_MICROTIME)))
 
815
         type == DRIZZLE_TYPE_TIMESTAMP))
872
816
    {
873
817
      my_error(ER_INVALID_DEFAULT, MYF(0), field_name->str);
874
818
      return true;
876
820
    else if (default_value->type() == Item::NULL_ITEM)
877
821
    {
878
822
      default_value= 0;
879
 
      if ((type_modifier & (NOT_NULL_FLAG | AUTO_INCREMENT_FLAG)) == NOT_NULL_FLAG)
 
823
      if ((type_modifier & (NOT_NULL_FLAG | AUTO_INCREMENT_FLAG)) ==
 
824
          NOT_NULL_FLAG)
880
825
      {
881
826
        my_error(ER_INVALID_DEFAULT, MYF(0), field_name->str);
882
827
        return true;
889
834
    }
890
835
  }
891
836
 
892
 
  if (on_update_value && (type != DRIZZLE_TYPE_TIMESTAMP and type != DRIZZLE_TYPE_MICROTIME))
 
837
  if (on_update_value && type != DRIZZLE_TYPE_TIMESTAMP)
893
838
  {
894
839
    my_error(ER_INVALID_ON_UPDATE, MYF(0), field_name->str);
895
840
    return true;
908
853
}
909
854
 
910
855
 
 
856
/** Store position for column in ALTER TABLE .. ADD column. */
 
857
 
 
858
void store_position_for_column(const char *name)
 
859
{
 
860
  current_session->lex->last_field->after=const_cast<char*> (name);
 
861
}
 
862
 
911
863
/**
912
864
  Add a table to list of used tables.
913
865
 
928
880
*/
929
881
 
930
882
TableList *Select_Lex::add_table_to_list(Session *session,
931
 
                                         Table_ident *table,
932
 
                                         LEX_STRING *alias,
933
 
                                         const bitset<NUM_OF_TABLE_OPTIONS>& table_options,
934
 
                                         thr_lock_type lock_type,
935
 
                                         List<Index_hint> *index_hints_arg,
936
 
                                         LEX_STRING *option)
 
883
                                             Table_ident *table,
 
884
                                             LEX_STRING *alias,
 
885
                                             uint32_t table_options,
 
886
                                             thr_lock_type lock_type,
 
887
                                             List<Index_hint> *index_hints_arg,
 
888
                                             LEX_STRING *option)
937
889
{
938
 
  TableList *ptr;
 
890
  register TableList *ptr;
939
891
  TableList *previous_table_ref; /* The table preceding the current one. */
940
892
  char *alias_str;
941
893
  LEX *lex= session->lex;
943
895
  if (!table)
944
896
    return NULL;                                // End of memory
945
897
  alias_str= alias ? alias->str : table->table.str;
946
 
  if (! table_options.test(TL_OPTION_ALIAS) &&
 
898
  if (!test(table_options & TL_OPTION_ALIAS) &&
947
899
      check_table_name(table->table.str, table->table.length))
948
900
  {
949
901
    my_error(ER_WRONG_TABLE_NAME, MYF(0), table->table.str);
954
906
  {
955
907
    my_casedn_str(files_charset_info, table->db.str);
956
908
 
957
 
    identifier::Schema schema_identifier(string(table->db.str));
 
909
    SchemaIdentifier schema_identifier(string(table->db.str));
958
910
    if (not check_db_name(session, schema_identifier))
959
911
    {
960
912
 
971
923
                 ER(ER_DERIVED_MUST_HAVE_ALIAS), MYF(0));
972
924
      return NULL;
973
925
    }
974
 
    if (!(alias_str= (char*) session->getMemRoot()->duplicate(alias_str,table->table.length+1)))
 
926
    if (!(alias_str= (char*) session->memdup(alias_str,table->table.length+1)))
975
927
      return NULL;
976
928
  }
977
929
  if (!(ptr = (TableList *) session->calloc(sizeof(TableList))))
978
930
    return NULL;
979
 
 
980
931
  if (table->db.str)
981
932
  {
982
933
    ptr->setIsFqtn(true);
983
 
    ptr->setSchemaName(table->db.str);
 
934
    ptr->db= table->db.str;
984
935
    ptr->db_length= table->db.length;
985
936
  }
986
 
  else if (lex->copy_db_to(ptr->getSchemaNamePtr(), &ptr->db_length))
 
937
  else if (lex->copy_db_to(&ptr->db, &ptr->db_length))
987
938
    return NULL;
988
939
  else
989
940
    ptr->setIsFqtn(false);
990
941
 
991
942
  ptr->alias= alias_str;
992
943
  ptr->setIsAlias(alias ? true : false);
993
 
  ptr->setTableName(table->table.str);
 
944
  if (table->table.length)
 
945
    table->table.length= my_casedn_str(files_charset_info, table->table.str);
 
946
  ptr->table_name=table->table.str;
994
947
  ptr->table_name_length=table->table.length;
995
948
  ptr->lock_type=   lock_type;
996
 
  ptr->force_index= table_options.test(TL_OPTION_FORCE_INDEX);
997
 
  ptr->ignore_leaves= table_options.test(TL_OPTION_IGNORE_LEAVES);
 
949
  ptr->force_index= test(table_options & TL_OPTION_FORCE_INDEX);
 
950
  ptr->ignore_leaves= test(table_options & TL_OPTION_IGNORE_LEAVES);
998
951
  ptr->derived=     table->sel;
999
952
  ptr->select_lex=  lex->current_select;
1000
953
  ptr->index_hints= index_hints_arg;
1007
960
         tables ;
1008
961
         tables=tables->next_local)
1009
962
    {
1010
 
      if (not my_strcasecmp(table_alias_charset, alias_str, tables->alias) &&
1011
 
          not my_strcasecmp(system_charset_info, ptr->getSchemaName(), tables->getSchemaName()))
 
963
      if (!my_strcasecmp(table_alias_charset, alias_str, tables->alias) &&
 
964
          !strcasecmp(ptr->db, tables->db))
1012
965
      {
1013
966
        my_error(ER_NONUNIQ_TABLE, MYF(0), alias_str);
1014
967
        return NULL;
1072
1025
bool Select_Lex::init_nested_join(Session *session)
1073
1026
{
1074
1027
  TableList *ptr;
1075
 
  NestedJoin *nested_join;
 
1028
  nested_join_st *nested_join;
1076
1029
 
1077
1030
  if (!(ptr= (TableList*) session->calloc(ALIGN_SIZE(sizeof(TableList))+
1078
 
                                       sizeof(NestedJoin))))
 
1031
                                       sizeof(nested_join_st))))
1079
1032
    return true;
1080
 
  ptr->setNestedJoin(((NestedJoin*) ((unsigned char*) ptr + ALIGN_SIZE(sizeof(TableList)))));
 
1033
  ptr->setNestedJoin(((nested_join_st*) ((unsigned char*) ptr + ALIGN_SIZE(sizeof(TableList)))));
1081
1034
  nested_join= ptr->getNestedJoin();
1082
1035
  join_list->push_front(ptr);
1083
1036
  ptr->setEmbedding(embedding);
1107
1060
TableList *Select_Lex::end_nested_join(Session *)
1108
1061
{
1109
1062
  TableList *ptr;
1110
 
  NestedJoin *nested_join;
 
1063
  nested_join_st *nested_join;
1111
1064
 
1112
1065
  assert(embedding);
1113
1066
  ptr= embedding;
1148
1101
TableList *Select_Lex::nest_last_join(Session *session)
1149
1102
{
1150
1103
  TableList *ptr;
1151
 
  NestedJoin *nested_join;
 
1104
  nested_join_st *nested_join;
1152
1105
  List<TableList> *embedded_list;
1153
1106
 
1154
1107
  if (!(ptr= (TableList*) session->calloc(ALIGN_SIZE(sizeof(TableList))+
1155
 
                                          sizeof(NestedJoin))))
 
1108
                                       sizeof(nested_join_st))))
1156
1109
    return NULL;
1157
 
  ptr->setNestedJoin(((NestedJoin*) ((unsigned char*) ptr + ALIGN_SIZE(sizeof(TableList)))));
 
1110
  ptr->setNestedJoin(((nested_join_st*) ((unsigned char*) ptr + ALIGN_SIZE(sizeof(TableList)))));
1158
1111
  nested_join= ptr->getNestedJoin();
1159
1112
  ptr->setEmbedding(embedding);
1160
1113
  ptr->setJoinList(join_list);
1446
1399
 
1447
1400
 
1448
1401
/**
 
1402
  kill on thread.
 
1403
 
 
1404
  @param session                        Thread class
 
1405
  @param id                     Thread id
 
1406
  @param only_kill_query        Should it kill the query or the connection
 
1407
 
 
1408
  @note
 
1409
    This is written such that we have a short lock on LOCK_thread_count
 
1410
*/
 
1411
 
 
1412
static unsigned int
 
1413
kill_one_thread(Session *, ulong id, bool only_kill_query)
 
1414
{
 
1415
  Session *tmp= NULL;
 
1416
  uint32_t error= ER_NO_SUCH_THREAD;
 
1417
  pthread_mutex_lock(&LOCK_thread_count); // For unlink from list
 
1418
  
 
1419
  for (SessionList::iterator it= getSessionList().begin(); it != getSessionList().end(); ++it )
 
1420
  {
 
1421
    if ((*it)->thread_id == id)
 
1422
    {
 
1423
      tmp= *it;
 
1424
      pthread_mutex_lock(&tmp->LOCK_delete);    // Lock from delete
 
1425
      break;
 
1426
    }
 
1427
  }
 
1428
  pthread_mutex_unlock(&LOCK_thread_count);
 
1429
  if (tmp)
 
1430
  {
 
1431
 
 
1432
    if (tmp->isViewable())
 
1433
    {
 
1434
      tmp->awake(only_kill_query ? Session::KILL_QUERY : Session::KILL_CONNECTION);
 
1435
      error= 0;
 
1436
    }
 
1437
 
 
1438
    pthread_mutex_unlock(&tmp->LOCK_delete);
 
1439
  }
 
1440
  return(error);
 
1441
}
 
1442
 
 
1443
 
 
1444
/*
 
1445
  kills a thread and sends response
 
1446
 
 
1447
  SYNOPSIS
 
1448
    sql_kill()
 
1449
    session                     Thread class
 
1450
    id                  Thread id
 
1451
    only_kill_query     Should it kill the query or the connection
 
1452
*/
 
1453
 
 
1454
void sql_kill(Session *session, ulong id, bool only_kill_query)
 
1455
{
 
1456
  uint32_t error;
 
1457
  if (!(error= kill_one_thread(session, id, only_kill_query)))
 
1458
    session->my_ok();
 
1459
  else
 
1460
    my_error(error, MYF(0), id);
 
1461
}
 
1462
 
 
1463
 
 
1464
/**
1449
1465
  Check if the select is a simple select (not an union).
1450
1466
 
1451
1467
  @retval
1454
1470
    1   error   ; In this case the error messege is sent to the client
1455
1471
*/
1456
1472
 
1457
 
bool check_simple_select(Session::pointer session)
 
1473
bool check_simple_select()
1458
1474
{
 
1475
  Session *session= current_session;
1459
1476
  LEX *lex= session->lex;
1460
1477
  if (lex->current_select != &lex->select_lex)
1461
1478
  {
1572
1589
 
1573
1590
 
1574
1591
/**
 
1592
  CREATE TABLE query pre-check.
 
1593
 
 
1594
  @param session                        Thread handler
 
1595
  @param tables         Global table list
 
1596
  @param create_table           Table which will be created
 
1597
 
 
1598
  @retval
 
1599
    false   OK
 
1600
  @retval
 
1601
    true   Error
 
1602
*/
 
1603
 
 
1604
bool create_table_precheck(TableIdentifier &identifier)
 
1605
{
 
1606
  if (not plugin::StorageEngine::canCreateTable(identifier))
 
1607
  {
 
1608
    my_error(ER_DBACCESS_DENIED_ERROR, MYF(0), "", "", identifier.getSchemaName().c_str());
 
1609
    return true;
 
1610
  }
 
1611
 
 
1612
  if (not plugin::StorageEngine::doesSchemaExist(identifier))
 
1613
  {
 
1614
    my_error(ER_BAD_DB_ERROR, MYF(0), identifier.getSchemaName().c_str());
 
1615
    return true;
 
1616
  }
 
1617
 
 
1618
  return false;
 
1619
}
 
1620
 
 
1621
 
 
1622
/**
1575
1623
  negate given expression.
1576
1624
 
1577
1625
  @param session  thread handler
1638
1686
}
1639
1687
 
1640
1688
 
1641
 
bool check_identifier_name(LEX_STRING *str, error_t err_code,
 
1689
bool check_identifier_name(LEX_STRING *str, uint32_t err_code,
1642
1690
                           uint32_t max_char_length,
1643
1691
                           const char *param_for_err_msg)
1644
1692
{
1664
1712
 
1665
1713
  switch (err_code)
1666
1714
  {
1667
 
  case EE_OK:
 
1715
  case 0:
1668
1716
    break;
1669
1717
  case ER_WRONG_STRING_LENGTH:
1670
1718
    my_error(err_code, MYF(0), str->str, param_for_err_msg, max_char_length);
1676
1724
    assert(0);
1677
1725
    break;
1678
1726
  }
1679
 
 
1680
1727
  return true;
1681
1728
}
1682
1729
 
1697
1744
{
1698
1745
  assert(session->m_lip == NULL);
1699
1746
 
1700
 
  DRIZZLE_QUERY_PARSE_START(session->getQueryString()->c_str());
 
1747
  DRIZZLE_QUERY_PARSE_START(session->query.c_str());
1701
1748
 
1702
1749
  /* Set Lex_input_stream. */
1703
1750
 
1705
1752
 
1706
1753
  /* Parse the query. */
1707
1754
 
1708
 
  bool parse_status= DRIZZLEparse(session) != 0;
 
1755
  bool mysql_parse_status= DRIZZLEparse(session) != 0;
1709
1756
 
1710
1757
  /* Check that if DRIZZLEparse() failed, session->is_error() is set. */
1711
1758
 
1712
 
  assert(!parse_status || session->is_error());
 
1759
  assert(!mysql_parse_status || session->is_error());
1713
1760
 
1714
1761
  /* Reset Lex_input_stream. */
1715
1762
 
1716
1763
  session->m_lip= NULL;
1717
1764
 
1718
 
  DRIZZLE_QUERY_PARSE_DONE(parse_status || session->is_fatal_error);
 
1765
  DRIZZLE_QUERY_PARSE_DONE(mysql_parse_status || session->is_fatal_error);
1719
1766
 
1720
1767
  /* That's it. */
1721
1768
 
1722
 
  return parse_status || session->is_fatal_error;
 
1769
  return mysql_parse_status || session->is_fatal_error;
1723
1770
}
1724
1771
 
1725
1772
/**