Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f123758

Browse files
committed
Disable notice on auto substitution of partition
1 parent 4c8fdcb commit f123758

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

vops.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3554,7 +3554,7 @@ vops_substitute_tables_with_projections(char const* queryString, Query *query)
35543554
parsetree = linitial_node(RawStmt, parsetree_list);
35553555

35563556
/* Replace table with partition */
3557-
elog(NOTICE, "Use projection %s instead of table %d", projectionName, rte->relid);
3557+
elog(DEBUG1, "Use projection %s instead of table %d", projectionName, rte->relid);
35583558
select = (SelectStmt*)parsetree->stmt;
35593559
rv = linitial_node(RangeVar, select->fromClause);
35603560
rv->relname = projectionName;

vops.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,11 @@ <h3><a name="types">Types</a></h3>
189189
<tr><td>float8</td><td>float8</td><td>vops_float8</td></tr>
190190
<tr><td>date</td><td>DateADT</td><td>vops_date</td></tr>
191191
<tr><td>timestamp</td><td>Timestamp</td><td>vops_timestamp</td></tr>
192+
<tr><td>interval</td><td>Interval</td><td>vops_interval</td></tr>
193+
<tr><td>char(n)</td><td>text</td><td>vops_text(n)</td></tr>
194+
<tr><td>varchar(n)</td><td>text</td><td>vops_text(n)</td></tr>
192195
</table>
193196

194-
<p>
195-
VOPS doesn't support work with strings (char or varchar types), except case of single character.
196-
If strings are used as identifiers, in most cases it is preferable to place them in some dictionary and use integer identifiers instead of
197-
original strings.
198-
</p>
199-
200197
<h3><a name="operators">Vector operators</a></h3>
201198

202199
<p>

0 commit comments

Comments
 (0)