Skip to content

Commit 804fe35

Browse files
committed
Escape underscores in CHANGELOG.md
Change-Id: I2b536535743ef2dbc795982049889adb04ae1949
1 parent 1b7c4b6 commit 804fe35

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

CHANGELOG.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -36,26 +36,26 @@
3636
* ARROW-1265 - [Plasma] Plasma store memory leak warnings in Python test suite
3737
* ARROW-1267 - [Java] Handle zero length case in BitVector.splitAndTransfer
3838
* ARROW-1269 - [Packaging] Add Windows wheel build scripts from ARROW-1068 to arrow-dist
39-
* ARROW-1275 - [C++] Default static library prefix for Snappy should be "_static"
39+
* ARROW-1275 - [C++] Default static library prefix for Snappy should be "\_static"
4040
* ARROW-1276 - Cannot serializer empty DataFrame to parquet
4141
* ARROW-1283 - [Java] VectorSchemaRoot should be able to be closed() more than once
4242
* ARROW-1285 - PYTHON: NotImplemented exception creates empty parquet file
4343
* ARROW-1287 - [Python] Emulate "whence" argument of seek in NativeFile
4444
* ARROW-1290 - [C++] Use array capacity doubling in arrow::BufferBuilder
45-
* ARROW-1291 - [Python] pa.RecordBatch.from_pandas doesn't accept DataFrame with numeric column names
45+
* ARROW-1291 - [Python] `pa.RecordBatch.from_pandas` doesn't accept DataFrame with numeric column names
4646
* ARROW-1294 - [C++] New Appveyor build failures
4747
* ARROW-1296 - [Java] templates/FixValueVectors reset() method doesn't set allocationSizeInBytes correctly
4848
* ARROW-1300 - [JAVA] Fix ListVector Tests
49-
* ARROW-1306 - [Python] Encoding? issue with error reporting for parquet.read_table
50-
* ARROW-1308 - [C++] ld tries to link 'arrow_static' even when -DARROW_BUILD_STATIC=off
51-
* ARROW-1309 - [Python] Error inferring List type in Array.from_pandas when inner values are all None
49+
* ARROW-1306 - [Python] Encoding? issue with error reporting for `parquet.read_table`
50+
* ARROW-1308 - [C++] ld tries to link `arrow_static` even when -DARROW_BUILD_STATIC=off
51+
* ARROW-1309 - [Python] Error inferring List type in `Array.from_pandas` when inner values are all None
5252
* ARROW-1310 - [JAVA] Revert ARROW-886
53-
* ARROW-1312 - [C++] Set default value to ARROW_JEMALLOC to OFF until ARROW-1282 is resolved
53+
* ARROW-1312 - [C++] Set default value to `ARROW_JEMALLOC` to OFF until ARROW-1282 is resolved
5454
* ARROW-1326 - [Python] Fix Sphinx build in Travis CI
55-
* ARROW-1327 - [Python] Failing to release GIL in MemoryMappedFile._open causes deadlock
56-
* ARROW-1328 - [Python] pyarrow.Table.from_pandas option timestamps_to_ms changes column values
55+
* ARROW-1327 - [Python] Failing to release GIL in `MemoryMappedFile._open` causes deadlock
56+
* ARROW-1328 - [Python] `pyarrow.Table.from_pandas` option `timestamps_to_ms` changes column values
5757
* ARROW-1330 - [Plasma] Turn on plasma tests on manylinux1
58-
* ARROW-1335 - [C++] PrimitiveArray::raw_values has inconsistent semantics re: offsets compared with subclasses
58+
* ARROW-1335 - [C++] `PrimitiveArray::raw_values` has inconsistent semantics re: offsets compared with subclasses
5959
* ARROW-1338 - [Python] Investigate non-deterministic core dump on Python 2.7, Travis CI builds
6060
* ARROW-1340 - [Java] NullableMapVector field doesn't maintain metadata
6161
* ARROW-1342 - [Python] Support strided array of lists
@@ -75,7 +75,7 @@
7575
* ARROW-1140 - [C++] Allow optional build of plasma
7676
* ARROW-1149 - [Plasma] Create Cython client library for Plasma
7777
* ARROW-1173 - [Plasma] Blog post for Plasma
78-
* ARROW-1211 - [C++] Consider making default_memory_pool() the default for builder classes
78+
* ARROW-1211 - [C++] Consider making `default_memory_pool()` the default for builder classes
7979
* ARROW-1213 - [Python] Enable s3fs to be used with ParquetDataset and reader/writer functions
8080
* ARROW-1219 - [C++] Use more vanilla Google C++ formatting
8181
* ARROW-1224 - [Format] Clarify language around buffer padding and alignment in IPC
@@ -89,13 +89,13 @@
8989
* ARROW-1259 - [Plasma] Speed up Plasma tests
9090
* ARROW-1260 - [Plasma] Use factory method to create Python PlasmaClient
9191
* ARROW-1264 - [Plasma] Don't exit the Python interpreter if the plasma client can't connect to the store
92-
* ARROW-1274 - [C++] add_compiler_export_flags() throws warning with CMake >= 3.3
92+
* ARROW-1274 - [C++] `add_compiler_export_flags()` throws warning with CMake >= 3.3
9393
* ARROW-1288 - Clean up many ASF license headers
94-
* ARROW-1289 - [Python] Add PYARROW_BUILD_PLASMA option like Parquet
94+
* ARROW-1289 - [Python] Add `PYARROW_BUILD_PLASMA` option like Parquet
9595
* ARROW-1301 - [C++/Python] Add remaining supported libhdfs UNIX-like filesystem APIs
9696
* ARROW-1303 - [C++] Support downloading Boost
9797
* ARROW-1315 - [GLib] Status check of arrow::ArrayBuilder::Finish() is missing
98-
* ARROW-1323 - [GLib] Add garrow_boolean_array_get_values()
98+
* ARROW-1323 - [GLib] Add `garrow_boolean_array_get_values()`
9999
* ARROW-1333 - [Plasma] Sorting example for DataFrames in plasma
100100
* ARROW-1334 - [C++] Instantiate arrow::Table from vector of Array objects (instead of Columns)
101101

@@ -108,8 +108,8 @@
108108
* ARROW-1281 - [C++/Python] Add Docker setup for running HDFS tests and other tests we may not run in Travis CI
109109
* ARROW-1305 - [GLib] Add GArrowIntArrayBuilder
110110
* ARROW-1336 - [C++] Add arrow::schema factory function
111-
* ARROW-439 - [Python] Add option in "to_pandas" conversions to yield Categorical from String/Binary arrays
112-
* ARROW-622 - [Python] Investigate alternatives to timestamps_to_ms argument in pandas conversion
111+
* ARROW-439 - [Python] Add option in `to_pandas` conversions to yield Categorical from String/Binary arrays
112+
* ARROW-622 - [Python] Investigate alternatives to `timestamps_to_ms` argument in pandas conversion
113113

114114
## Task
115115

@@ -127,9 +127,9 @@
127127

128128
## Bug
129129

130-
* ARROW-1074 - from_pandas doesnt convert ndarray to list
130+
* ARROW-1074 - `from_pandas` doesnt convert ndarray to list
131131
* ARROW-1079 - [Python] Empty "private" directories should be ignored by Parquet interface
132-
* ARROW-1081 - C++: arrow::test::TestBase::MakePrimitive doesn't fill null_bitmap
132+
* ARROW-1081 - C++: arrow::test::TestBase::MakePrimitive doesn't fill `null_bitmap`
133133
* ARROW-1096 - [C++] Memory mapping file over 4GB fails on Windows
134134
* ARROW-1097 - Reading tensor needs file to be opened in writeable mode
135135
* ARROW-1098 - Document Error?

0 commit comments

Comments
 (0)