Skip to content

Commit 39d958f

Browse files
committed
Remove mentions of WITH temp in IMPORT/EXPORT docs
It was removed from IMPORT between v1.1 and v2.0
1 parent dbde03c commit 39d958f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

v2.0/import.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ If not using comma as your column delimiter, you can specify another Unicode cha
136136
</tr>
137137
<tr>
138138
<td><strong>Example</strong></td>
139-
<td>To use tab-delimited values: <code>WITH temp = '...', delimiter = e'\t'</code></td>
139+
<td>To use tab-delimited values: <code>WITH delimiter = e'\t'</code></td>
140140
</tr>
141141
</tbody>
142142
</table>
@@ -161,7 +161,7 @@ Do not import rows that begin with this character.
161161
</tr>
162162
<tr>
163163
<td><strong>Example</strong></td>
164-
<td><code>WITH temp = '...', comment = '#'</code></td>
164+
<td><code>WITH comment = '#'</code></td>
165165
</tr>
166166
</tbody>
167167
</table>
@@ -186,7 +186,7 @@ Convert values to SQL *NULL* if they match the specified string.
186186
</tr>
187187
<tr>
188188
<td><strong>Example</strong></td>
189-
<td>To use empty columns as <em>NULL</em>: <code>WITH temp = '...', nullif = ''</code></td>
189+
<td>To use empty columns as <em>NULL</em>: <code>WITH nullif = ''</code></td>
190190
</tr>
191191
</tbody>
192192
</table>

v2.1/export.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ If not using comma as your column delimiter, you can specify another Unicode cha
7373
</tr>
7474
<tr>
7575
<td><strong>Example</strong></td>
76-
<td>To use tab-delimited values: <code>WITH temp = '...', delimiter = e'\t'</code></td>
76+
<td>To use tab-delimited values: <code>WITH delimiter = e'\t'</code></td>
7777
</tr>
7878
</tbody>
7979
</table>
@@ -98,7 +98,7 @@ Convert SQL *NULL* values to they match the specified string.
9898
</tr>
9999
<tr>
100100
<td><strong>Example</strong></td>
101-
<td>To use empty columns as <em>NULL</em>: <code>WITH temp = '...', nullas = ''</code></td>
101+
<td>To use empty columns as <em>NULL</em>: <code>WITH nullas = ''</code></td>
102102
</tr>
103103
</tbody>
104104
</table>

v2.1/import.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ If not using comma as your column delimiter, you can specify another Unicode cha
136136
</tr>
137137
<tr>
138138
<td><strong>Example</strong></td>
139-
<td>To use tab-delimited values: <code>WITH temp = '...', delimiter = e'\t'</code></td>
139+
<td>To use tab-delimited values: <code>WITH delimiter = e'\t'</code></td>
140140
</tr>
141141
</tbody>
142142
</table>
@@ -161,7 +161,7 @@ Do not import rows that begin with this character.
161161
</tr>
162162
<tr>
163163
<td><strong>Example</strong></td>
164-
<td><code>WITH temp = '...', comment = '#'</code></td>
164+
<td><code>WITH comment = '#'</code></td>
165165
</tr>
166166
</tbody>
167167
</table>
@@ -186,7 +186,7 @@ Convert values to SQL *NULL* if they match the specified string.
186186
</tr>
187187
<tr>
188188
<td><strong>Example</strong></td>
189-
<td>To use empty columns as <em>NULL</em>: <code>WITH temp = '...', nullif = ''</code></td>
189+
<td>To use empty columns as <em>NULL</em>: <code>WITH nullif = ''</code></td>
190190
</tr>
191191
</tbody>
192192
</table>

0 commit comments

Comments
 (0)