1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

- Fix bug MDEV-5486 (fail to create or drop a table dbn.tbn when no default database)

modified:
  storage/connect/ha_connect.cc
  storage/connect/ha_connect.h

- Typo

modified:
  storage/connect/odbconn.cpp
  storage/connect/user_connect.h
This commit is contained in:
Olivier Bertrand
2013-12-31 13:08:29 +01:00
parent 32284eba5c
commit e71bd28f3f
4 changed files with 42 additions and 19 deletions

View File

@@ -62,10 +62,10 @@ public:
static PCONNECT to_users; // To the chain of users
PCONNECT next; // Next user in chain
PCONNECT previous; // Previous user in chain
PGLOBAL g; // The common handle to CONNECT
PGLOBAL g; // The common handle to CONNECT
//char dbname[32]; // The DBCONNECT database
query_id_t last_query_id; // the latest user query id
int count; // if used by several handlers
int count; // if used by several handlers
// Statistics
ulong nrd, fnd, nfd;
ulonglong tb1;