projects
/
online_analyze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8602afc
)
add assert
author
Teodor Sigaev
<teodor@sigaev.ru>
Fri, 15 Jun 2018 12:35:55 +0000
(15:35 +0300)
committer
Teodor Sigaev
<teodor@sigaev.ru>
Fri, 15 Jun 2018 12:35:55 +0000
(15:35 +0300)
online_analyze.c
patch
|
blob
|
history
diff --git
a/online_analyze.c
b/online_analyze.c
index
8af073b
..
3fe4da5
100644
(file)
--- a/
online_analyze.c
+++ b/
online_analyze.c
@@
-933,8
+933,11
@@
onlineAnalyzeHookerUtility(
((VacuumRelation*)lfirst(l))->relation :
#endif
(RangeVar*)lfirst(l);
- Oid tblOid
= RangeVarGetRelid(tblname, NoLock, true)
;
+ Oid tblOid;
+ Assert(IsA(tblname, RangeVar));
+
+ tblOid = RangeVarGetRelid(tblname, NoLock, true);
makeAnalyze(tblOid, op, -1);
}
}