diff options
author | randomdan <randomdan@localhost> | 2014-06-02 12:33:13 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2014-06-02 12:33:13 +0000 |
commit | 498ebe7d0cef4b22f57cf48aac9ad61ff7d3ba63 (patch) | |
tree | 9ab2466ccf846cd9db1e347b4177c8e7d1e267d9 /project2/sql | |
parent | Split out ICE support from project jam file, add support for slicer (diff) | |
download | project2-498ebe7d0cef4b22f57cf48aac9ad61ff7d3ba63.tar.bz2 project2-498ebe7d0cef4b22f57cf48aac9ad61ff7d3ba63.tar.xz project2-498ebe7d0cef4b22f57cf48aac9ad61ff7d3ba63.zip |
Fix naming clash with 'cache'
Diffstat (limited to 'project2/sql')
-rw-r--r-- | project2/sql/sqlCache.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/project2/sql/sqlCache.cpp b/project2/sql/sqlCache.cpp index 2d40bdd..c495528 100644 --- a/project2/sql/sqlCache.cpp +++ b/project2/sql/sqlCache.cpp @@ -1,5 +1,5 @@ #include <pch.hpp> -#include "cache.h" +#include "rowSetCache.h" #include "sqlVariableBinder.h" #include "sqlHandleAsVariableType.h" #include "buffer.h" @@ -20,10 +20,10 @@ typedef boost::shared_ptr<DB::SelectCommand> SelectPtr; typedef boost::shared_ptr<DB::ModifyCommand> ModifyPtr; -class SqlCache : public Cache { +class SqlCache : public RowSetCache { public: SqlCache(ScriptNodePtr p) : - Cache(p), + RowSetCache(p), db(NULL) { } |