diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-11-11 13:00:39 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-11-11 13:00:39 +0100 |
commit | eca84a9b1837304ce4be50994ef7077b31ccf50c (patch) | |
tree | 93b406318c6add4f93cf93ee9fb96fd15cea970f /storage/connect/ha_connect.h | |
parent | e5c589a8da02211e3b0ac9ad8a785c4669b63fda (diff) | |
download | mariadb-git-eca84a9b1837304ce4be50994ef7077b31ccf50c.tar.gz |
- Add (limited) support for UPDATE and DELETE to ODBC tables
(also provide the possibility to issue NOTE warnings)
modified:
storage/connect/connect.cc
storage/connect/ha_connect.cc
storage/connect/ha_connect.h
storage/connect/odbconn.cpp
storage/connect/odbconn.h
storage/connect/plgdbsem.h
storage/connect/tabodbc.cpp
storage/connect/tabodbc.h
- Return proper error number when modifying read only tables
modified:
storage/connect/connect.cc
storage/connect/ha_connect.cc
storage/connect/ha_connect.h
storage/connect/mysql-test/connect/r/bin.result
storage/connect/mysql-test/connect/r/csv.result
storage/connect/mysql-test/connect/r/dbf.result
storage/connect/mysql-test/connect/r/fix.result
storage/connect/mysql-test/connect/r/ini.result
storage/connect/mysql-test/connect/r/vec.result
storage/connect/mysql-test/connect/t/bin.test
storage/connect/mysql-test/connect/t/csv.test
storage/connect/mysql-test/connect/t/dbf.test
storage/connect/mysql-test/connect/t/fix.test
storage/connect/mysql-test/connect/t/ini.test
storage/connect/mysql-test/connect/t/vec.test
storage/connect/table.cpp
storage/connect/taboccur.cpp
storage/connect/tabpivot.cpp
storage/connect/tabutil.cpp
storage/connect/tabwmi.cpp
storage/connect/tabxcl.cpp
Diffstat (limited to 'storage/connect/ha_connect.h')
-rw-r--r-- | storage/connect/ha_connect.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/ha_connect.h b/storage/connect/ha_connect.h index 35daf2e5c19..dd67773efc0 100644 --- a/storage/connect/ha_connect.h +++ b/storage/connect/ha_connect.h @@ -174,7 +174,7 @@ public: bool IsSameIndex(PIXDEF xp1, PIXDEF xp2); PTDB GetTDB(PGLOBAL g); - bool OpenTable(PGLOBAL g, bool del= false); + int OpenTable(PGLOBAL g, bool del= false); bool IsOpened(void); int CloseTable(PGLOBAL g); int MakeRecord(char *buf); |