mirror of https://github.com/citusdata/citus.git
Fix some typos from #3280
parent
420e21919b
commit
e7a6cc0801
|
@ -1960,7 +1960,7 @@ IsLocalReferenceTableJoin(Query *parse, List *rangeTableList)
|
||||||
* they do distributed accesses or not, and defaulting to local planning
|
* they do distributed accesses or not, and defaulting to local planning
|
||||||
* might break transactional semantics.
|
* might break transactional semantics.
|
||||||
*
|
*
|
||||||
* For example, Access to the reference table in the function might go
|
* For example, access to the reference table in the function might go
|
||||||
* over a connection, but access to the same reference table outside
|
* over a connection, but access to the same reference table outside
|
||||||
* the function will go over the current backend. The snapshot for the
|
* the function will go over the current backend. The snapshot for the
|
||||||
* connection in the function is taken after the statement snapshot,
|
* connection in the function is taken after the statement snapshot,
|
||||||
|
@ -1981,7 +1981,7 @@ IsLocalReferenceTableJoin(Query *parse, List *rangeTableList)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We only allow local join for the relation kinds for which we can
|
* We only allow local join for the relation kinds for which we can
|
||||||
* determine deterministcly that access to hem are local or distributed.
|
* determine deterministically that access to them are local or distributed.
|
||||||
* For this reason, we don't allow non-materialized views.
|
* For this reason, we don't allow non-materialized views.
|
||||||
*/
|
*/
|
||||||
if (rangeTableEntry->relkind == RELKIND_VIEW)
|
if (rangeTableEntry->relkind == RELKIND_VIEW)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
-- File to CREATE FUNCTIONs and helpers needed for subsequent tests
|
-- File to create functions and helpers needed for subsequent tests
|
||||||
-- create a helper function to create objects on each node
|
-- create a helper function to create objects on each node
|
||||||
CREATE OR REPLACE FUNCTION run_command_on_master_and_workers(p_sql text)
|
CREATE OR REPLACE FUNCTION run_command_on_master_and_workers(p_sql text)
|
||||||
RETURNS void LANGUAGE plpgsql AS $$
|
RETURNS void LANGUAGE plpgsql AS $$
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
-- File to CREATE FUNCTIONs and helpers needed for subsequent tests
|
-- File to create functions and helpers needed for subsequent tests
|
||||||
|
|
||||||
-- create a helper function to create objects on each node
|
-- create a helper function to create objects on each node
|
||||||
CREATE OR REPLACE FUNCTION run_command_on_master_and_workers(p_sql text)
|
CREATE OR REPLACE FUNCTION run_command_on_master_and_workers(p_sql text)
|
||||||
|
|
Loading…
Reference in New Issue