diff options
author | venu@myvenu.com <> | 2002-06-12 14:13:12 -0700 |
---|---|---|
committer | venu@myvenu.com <> | 2002-06-12 14:13:12 -0700 |
commit | 5a33842a1642a8bdc8a8bb19eccc1f844379b887 (patch) | |
tree | c259cc4fb9ea2857ea92e18b183d51a0289b2270 /sql/sql_insert.cc | |
parent | 75959e6e2623f36b494b5802d9e417d122e49f83 (diff) | |
download | mariadb-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/sql_insert.cc')
-rw-r--r-- | sql/sql_insert.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_insert.cc b/sql/sql_insert.cc index c181e299d05..c3aeca1fff8 100644 --- a/sql/sql_insert.cc +++ b/sql/sql_insert.cc @@ -44,7 +44,7 @@ static void unlink_blobs(register TABLE *table); Resets form->time_stamp if a timestamp value is set */ -static int +int check_insert_fields(THD *thd,TABLE *table,List<Item> &fields, List<Item> &values, ulong counter) { |