summaryrefslogtreecommitdiff
path: root/sql/field.h
diff options
context:
space:
mode:
authorvenu@myvenu.com <>2002-06-12 14:13:12 -0700
committervenu@myvenu.com <>2002-06-12 14:13:12 -0700
commit5a33842a1642a8bdc8a8bb19eccc1f844379b887 (patch)
treec259cc4fb9ea2857ea92e18b183d51a0289b2270 /sql/field.h
parent75959e6e2623f36b494b5802d9e417d122e49f83 (diff)
downloadmariadb-git-5a33842a1642a8bdc8a8bb19eccc1f844379b887.tar.gz
sql_error.cc, sql_prepare.cc:
new file Client-server protocol 4.1 changes - Server side: * Enhanced metadata information: - SHOW [COUNT(*)] ERRORS [LIMIT [offset,] rows] - SHOW [COUNT(*)] WARNING [LIMIT [offset,] rows] - SHOW TABLE TYPES - SHOW PRIVILEGES - SHOW COLUMN TYPES (Not fully implemented) * Prepared execution * Long data handling in pieces * And other misc changes
Diffstat (limited to 'sql/field.h')
-rw-r--r--sql/field.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/field.h b/sql/field.h
index f84b54271ce..5b9723654d9 100644
--- a/sql/field.h
+++ b/sql/field.h
@@ -1038,7 +1038,9 @@ public:
class Send_field {
public:
- const char *table_name,*col_name;
+ const char *db_name;
+ const char *table_name,*org_table_name;
+ const char *col_name,*org_col_name;
uint length,flags,decimals;
enum_field_types type;
Send_field() {}