DBA Data[Home] [Help]

CTXSYS.DRISGP dependencies on DR_DEF

Line 225: return dr_def.pref_rec;

221: p_sg_name in varchar2,
222: f_new_sg in boolean default false,
223: f_check_own in boolean default false
224: )
225: return dr_def.pref_rec;
226:
227: /*------------------------ copy_section_group ------------------------------*/
228: /* copy section group info into index meta data */
229:

Line 238: return dr_def.pref_rec;

234: alt_I out boolean,
235: p_new_sdata_section out boolean,
236: ia in sys.ODCIIndexInfo default NULL
237: )
238: return dr_def.pref_rec;
239:
240: /*----------------------- IndexAddSection ---------------------------*/
241: /* add a section to an already existing index */
242:

Line 245: idx in dr_def.idx_rec,

241: /* add a section to an already existing index */
242:
243: PROCEDURE IndexAddSection(
244: ia in sys.ODCIIndexInfo,
245: idx in dr_def.idx_rec,
246: sectype in varchar2,
247: secname in varchar2,
248: tag in varchar2,
249: visible in number,

Line 262: o_sectab out nocopy dr_def.sec_tab

258:
259: PROCEDURE LoadSectionMD(
260: p_idxid in number,
261: p_fonly in boolean,
262: o_sectab out nocopy dr_def.sec_tab
263: );
264:
265: /*----------------------- GetSection ------------------------------*/
266: /* return type of section given name */

Line 270: ) return dr_def.sec_rec;

266: /* return type of section given name */
267: FUNCTION GetSection(
268: p_idxid in number,
269: p_secname in varchar2
270: ) return dr_def.sec_rec;
271:
272: /*----------------------- GetSections ------------------------------*/
273: /* return sections associated with given index */
274: FUNCTION GetSections(

Line 276: ) return dr_def.sec_tab;

272: /*----------------------- GetSections ------------------------------*/
273: /* return sections associated with given index */
274: FUNCTION GetSections(
275: p_idxid in number
276: ) return dr_def.sec_tab;
277:
278: /*----------------------- HasSectionType ------------------------------*/
279: /* return true if section group has section of given type */
280: FUNCTION HasSectionType(

Line 288: idx in dr_def.idx_rec,

284:
285: /*--------------------------- field_to_mdata ------------------------------*/
286: /* make the metadata changes to convert a field section to mdata */
287: PROCEDURE field_to_mdata(
288: idx in dr_def.idx_rec,
289: fsec in varchar2,
290: read_only in boolean,
291: ftyp out number,
292: mdatatyp out number

Line 299: idx in dr_def.idx_rec,

295: /*----------------------- IndexRemSection ---------------------------*/
296: /* Remove section from index metadata, used for doc lexer */
297: PROCEDURE IndexRemSection(
298: ia in sys.ODCIIndexInfo,
299: idx in dr_def.idx_rec,
300: sectype in varchar2,
301: secname in varchar2,
302: sectag in varchar2,
303: secfid in number,

Line 316: p_idx in dr_def.idx_rec,

312:
313: /*--------------------------- GetTkTypMVDATA ------------------------*/
314: /* check that it's an MVDATA section and return token_type */
315: FUNCTION GetTkTypMVDATA(
316: p_idx in dr_def.idx_rec,
317: p_secname in varchar2
318: ) return binary_integer;
319:
320: /*--------------------------- CheckUpdMdata ------------------------*/

Line 323: p_idx in dr_def.idx_rec,

319:
320: /*--------------------------- CheckUpdMdata ------------------------*/
321: /* check that mdata section is updateable, and return token_type */
322: FUNCTION CheckUpdMdata(
323: p_idx in dr_def.idx_rec,
324: p_secname in varchar2
325: ) return binary_integer;
326:
327: /*---------------------------- set_section_attribute -----------------------*/