@@ -818,7 +818,7 @@ def to_sql( # pylint: disable=too-many-locals
818818
819819 "drop" - ``DROP ... RESTRICT`` - drops the table. Fails if there are any views that depend on it.
820820 "cascade" - ``DROP ... CASCADE`` - drops the table, and all views that depend on it.
821- "truncate" - ``TRUNCATE ...`` - truncates the table, but immediatly commits current
821+ "truncate" - ``TRUNCATE ...`` - truncates the table, but immediately commits current
822822 transaction & starts a new one, hence the overwrite happens in two transactions and is not atomic.
823823 "delete" - ``DELETE FROM ...`` - deletes all rows from the table. Slow relative to the other methods.
824824 index : bool
@@ -1298,7 +1298,7 @@ def copy_from_files( # pylint: disable=too-many-locals,too-many-arguments
12981298
12991299 "drop" - ``DROP ... RESTRICT`` - drops the table. Fails if there are any views that depend on it.
13001300 "cascade" - ``DROP ... CASCADE`` - drops the table, and all views that depend on it.
1301- "truncate" - ``TRUNCATE ...`` - truncates the table, but immediatly commits current
1301+ "truncate" - ``TRUNCATE ...`` - truncates the table, but immediately commits current
13021302 transaction & starts a new one, hence the overwrite happens in two transactions and is not atomic.
13031303 "delete" - ``DELETE FROM ...`` - deletes all rows from the table. Slow relative to the other methods.
13041304 diststyle : str
@@ -1526,7 +1526,7 @@ def copy( # pylint: disable=too-many-arguments
15261526
15271527 "drop" - ``DROP ... RESTRICT`` - drops the table. Fails if there are any views that depend on it.
15281528 "cascade" - ``DROP ... CASCADE`` - drops the table, and all views that depend on it.
1529- "truncate" - ``TRUNCATE ...`` - truncates the table, but immediatly commits current
1529+ "truncate" - ``TRUNCATE ...`` - truncates the table, but immediately commits current
15301530 transaction & starts a new one, hence the overwrite happens in two transactions and is not atomic.
15311531 "delete" - ``DELETE FROM ...`` - deletes all rows from the table. Slow relative to the other methods.
15321532 diststyle : str
0 commit comments