summaryrefslogtreecommitdiffstats
path: root/rasodmg/interesttiling.cc
diff options
context:
space:
mode:
authorAndrei Aiordachioaie <a.aiordachioaie@jacobs-university.de>2009-08-25 13:33:09 +0200
committerPeter Baumann <baumann@rasdaman.org>2009-08-27 09:38:08 +0200
commitfd66ca862d4499378719e2a635c9f97df28b763d (patch)
treee11e40b69e30b4d553cd0bcdedb435849c22e0d0 /rasodmg/interesttiling.cc
parentbb3139b97d956a8455649af82c0f3b705d2a8e55 (diff)
downloadrasdaman-upstream-fd66ca862d4499378719e2a635c9f97df28b763d.tar.gz
rasdaman-upstream-fd66ca862d4499378719e2a635c9f97df28b763d.tar.xz
rasdaman-upstream-fd66ca862d4499378719e2a635c9f97df28b763d.zip
Tiling & Indexing options added to rasql grammar
Diffstat (limited to 'rasodmg/interesttiling.cc')
-rw-r--r--rasodmg/interesttiling.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/rasodmg/interesttiling.cc b/rasodmg/interesttiling.cc
index aad8841..3e25818 100644
--- a/rasodmg/interesttiling.cc
+++ b/rasodmg/interesttiling.cc
@@ -149,7 +149,7 @@ r_Interest_Tiling::r_Interest_Tiling(const char* encoded) throw (r_Error)
pStart=encoded;
pEnd=pStart+strlen(pStart);
pTemp=pStart;
- pRes=strstr(pTemp,COLON);
+ pRes=strstr(pTemp,TCOLON);
if(!pRes)
{
@@ -189,7 +189,7 @@ r_Interest_Tiling::r_Interest_Tiling(const char* encoded) throw (r_Error)
//parse interest areas
pTemp=pRes;
- pRes=strstr(pTemp,COLON);
+ pRes=strstr(pTemp,TCOLON);
if(!pRes)
{
@@ -235,7 +235,7 @@ r_Interest_Tiling::r_Interest_Tiling(const char* encoded) throw (r_Error)
//try next item
pTemp=pRes;
- pRes=strstr(pTemp, COLON);
+ pRes=strstr(pTemp, TCOLON);
}
if(vectInterestAreas.empty())