~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/replace.cc

mergeĀ lp:~linuxjedi/drizzle/trunk-remove-drizzleadmin

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include "config.h"
 
21
#include <config.h>
22
22
#include <drizzled/show.h>
23
23
#include <drizzled/lock.h>
24
24
#include <drizzled/session.h>
25
25
#include <drizzled/statement/replace.h>
 
26
#include <drizzled/sql_lex.h>
26
27
 
27
 
namespace drizzled
28
 
{
 
28
namespace drizzled {
29
29
 
30
30
bool statement::Replace::execute()
31
31
{
32
 
  TableList *first_table= (TableList *) getSession()->lex->select_lex.table_list.first;
33
 
  TableList *all_tables= getSession()->lex->query_tables;
 
32
  TableList *first_table= (TableList *) lex().select_lex.table_list.first;
 
33
  TableList *all_tables= lex().query_tables;
34
34
  assert(first_table == all_tables && first_table != 0);
35
35
 
36
 
  if (insert_precheck(getSession(), all_tables))
37
 
  {
38
 
    return true;
39
 
  }
40
 
 
41
 
  if (getSession()->wait_if_global_read_lock(false, true))
42
 
  {
43
 
    return true;
44
 
  }
45
 
 
46
 
  bool res= insert_query(getSession(), 
 
36
  if (insert_precheck(&session(), all_tables))
 
37
  {
 
38
    return true;
 
39
  }
 
40
 
 
41
  if (session().wait_if_global_read_lock(false, true))
 
42
  {
 
43
    return true;
 
44
  }
 
45
 
 
46
  bool res= insert_query(&session(), 
47
47
                         all_tables, 
48
 
                         getSession()->lex->field_list, 
49
 
                         getSession()->lex->many_values,
50
 
                         getSession()->lex->update_list, 
51
 
                         getSession()->lex->value_list,
52
 
                         getSession()->lex->duplicates, 
53
 
                         getSession()->lex->ignore);
 
48
                         lex().field_list, 
 
49
                         lex().many_values,
 
50
                         lex().update_list, 
 
51
                         lex().value_list,
 
52
                         lex().duplicates, 
 
53
                         lex().ignore);
54
54
  /*
55
55
     Release the protection against the global read lock and wake
56
56
     everyone, who might want to set a global read lock.
57
57
   */
58
 
  getSession()->startWaitingGlobalReadLock();
 
58
  session().startWaitingGlobalReadLock();
59
59
 
60
60
  return res;
61
61
}