Skip to content

Commit 902f218

Browse files
committed
#9 Handle variant character sets.
1 parent 156ac13 commit 902f218

5 files changed

+80
-77
lines changed

changelog.txt

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
= 1.0.2 August 5, 2024 =
2+
3+
* Load the meta_names cache during activation; don't let it expire.
4+
5+
= 1.0.0 July 3, 2024 =
6+
7+
* Allow searching on order number and transaction id fields.
8+
* Keep a cache of the meta_names for order custom fields to avoid repeating a very slow query.
9+
10+
= 0.5.0 July 1, 2024 =
11+
12+
* Improved compatibility with WooCommerce 9.0.0+.
13+
14+
* Add advice to readme.txt suggesting a new key on `wp_wc_orders_meta` for very large sites.
15+
16+
= 0.4.1 June 15, 2024 =
17+
18+
* Make the patch for slow order-page viewing compatible with WooCommerce 8.9.3.
19+
* Fix a presentation defect in the table-generation notify message.
20+
21+
= 0.4.0 May 10, 2024 =
22+
23+
Patch the query to look up distinct public meta_key values.
24+
25+
= 0.3.0 April 25, 2024 =
26+
27+
Use JOINs rather than IN to get better performance. Shorten the table and column names.
28+
29+
= 0.2.6 April 15, 2024 =
30+
31+
Notice, localization, phpcs:ignore
32+
33+
= 0.2.5 April 13, 2024 =
34+
35+
Background loading. Correct handling of HPOS variant queries (from the dropdown).
36+
37+
= 0.2.4 April 6, 2024 =
38+
39+
Ingest wp_wc_order_addresses info when creating trigram table, and handle pre-HPOS sites correctly.
40+
41+
= 0.2.2 April 1, 2024 =
42+
43+
Perform trigram inserts in batches.
44+
45+
= 0.2.1 March 26, 2024 =
46+
47+
Keep up with changes to orders.
48+
49+
= 0.1.4 March 23, 2024
50+
51+
Use trigrams, support both traditional and HPOS orders.
52+
53+
= 0.1.3 March 21, 2024
54+
55+
Build a text index table and use it.
56+
57+
= 0.1.2 November 24, 2023
58+
59+
Add support for speeding Subscriptions searches.
60+
61+
= 0.1.1 November 19, 2023
62+
63+
Birthday of Fast Woo Order Lookup. And, the birthday (in 1988) of the author's daughter Catharine.

code/class-textdex.php

+10-9
Original file line numberDiff line numberDiff line change
@@ -402,30 +402,31 @@ private function get_order_metadata( $first, $last = null ) {
402402
$orders = $wpdb->prefix . 'wc_orders';
403403
$orderitems = $wpdb->prefix . 'woocommerce_order_items';
404404
$addresses = $wpdb->prefix . 'wc_order_addresses';
405+
$charset = $wpdb->charset;
405406
$collation = $wpdb->collate;
406407

407408

408409
$query = <<<QUERY
409410
SELECT id, value
410411
FROM (
411-
SELECT post_id id, meta_value COLLATE $collation value
412+
SELECT post_id id, CONVERT( meta_value USING $charset) COLLATE $collation value
412413
FROM $postmeta
413414
WHERE meta_key IN ('_billing_address_index','_shipping_address_index','_billing_last_name','_billing_email','_billing_phone','_order_number','_order_number_formatted')
414415
AND post_id >= %d and post_id < %d
415416
416417
UNION ALL
417-
SELECT order_id id, meta_value COLLATE $collation value
418+
SELECT order_id id, CONVERT( meta_value USING $charset) COLLATE $collation value
418419
FROM $ordersmeta
419420
WHERE meta_key IN ('_billing_address_index','_shipping_address_index','_order_number','_order_number_formatted')
420421
AND order_id >= %d and order_id < %d
421422
422423
UNION ALL
423-
SELECT order_id id, order_item_name COLLATE $collation value
424+
SELECT order_id id, CONVERT( order_item_name USING $charset) COLLATE $collation value
424425
FROM $orderitems
425426
WHERE order_id >= %d and order_id < %d
426427
427428
UNION ALL
428-
SELECT id, billing_email COLLATE $collation value
429+
SELECT id, CONVERT( billing_email USING $charset) COLLATE $collation value
429430
FROM $orders
430431
WHERE id >= %d and id < %d
431432
@@ -435,27 +436,27 @@ private function get_order_metadata( $first, $last = null ) {
435436
WHERE id >= %d and id < %d
436437
437438
UNION ALL
438-
SELECT id, transaction_id COLLATE $collation value
439+
SELECT id, CONVERT( transaction_id USING $charset) COLLATE $collation value
439440
FROM $orders
440441
WHERE id >= %d and id < %d AND transaction_id IS NOT NULL
441442
442443
UNION ALL
443-
SELECT order_id id, CONCAT_WS (' ', first_name, last_name, company, address_1, address_2, city, state, postcode, country) COLLATE $collation value
444+
SELECT order_id id, CONVERT( CONCAT_WS (' ', first_name, last_name, company, address_1, address_2, city, state, postcode, country) USING $charset) COLLATE $collation value
444445
FROM $addresses
445446
WHERE order_id >= %d and order_id < %d
446447
447448
UNION ALL
448-
SELECT order_id id, email COLLATE $collation value
449+
SELECT order_id id, CONVERT( email USING $charset) COLLATE $collation value
449450
FROM $addresses
450451
WHERE order_id >= %d and order_id < %d
451452
452453
UNION ALL
453-
SELECT order_id id, phone COLLATE $collation value
454+
SELECT order_id id, CONVERT( phone USING $charset) COLLATE $collation value
454455
FROM $addresses
455456
WHERE order_id >= %d and order_id < %d
456457
) a
457458
WHERE value IS NOT NULL
458-
ORDER BY id;
459+
ORDER BY id, value;
459460
QUERY;
460461
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
461462
$query = $wpdb->prepare( $query,

fast-woo-order-lookup.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
* Plugin URI: https://plumislandmedia.net/wordpress-plugins/fast-woo-order-lookup/
1313
* Description: Look up orders faster in large WooCommerce stores with many orders.
1414
* Version: 1.1.2
15-
* Requires at least: 5.8
1615
* Requires PHP: 5.6
16+
* Requires at least: 5.8
17+
* Tested up to: 6.7
1718
* WC requires at least: 4.0
1819
* WC tested up to: 9.1.4
1920
* Requires Plugins: woocommerce

languages/fast-woo-order-lookup.pot

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ msgstr ""
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=UTF-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
12-
"POT-Creation-Date: 2024-09-20T12:36:44+00:00\n"
12+
"POT-Creation-Date: 2024-10-07T13:02:07+00:00\n"
1313
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1414
"X-Generator: WP-CLI 2.9.0\n"
1515
"X-Domain: fast-woo-order-lookup\n"

readme.txt

+4-66
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Donate link:
55
Contributors: OllieJones
66
Tags: woocommerce, search, orders, database, performance
77
Requires at least: 5.9
8-
Tested up to: 6.6.1
8+
Tested up to: 6.7
99
Requires PHP: 5.6
1010
WC requires at least: 4.0
1111
WC tested up to: 9.1.4
@@ -92,7 +92,9 @@ Support for WooCommerce Sequential Order Numbers Pro. Faster initial indexing. W
9292

9393
== Changelog ==
9494

95-
= 1.1.2 September 20, 2024 =
95+
= 1.1.2 October 7, 2024 =
96+
97+
Handle tables and colums with character sets other than $wpdb->charset.
9698

9799
= 1.1.1 August 12, 2024 =
98100

@@ -101,67 +103,3 @@ Support for WooCommerce Sequential Order Numbers Pro. Faster initial indexing. W
101103
= 1.1.0 August 11, 2024 =
102104

103105
* Some MariaDB / MySQL versions implicitly cast integers to latin1 strings causing problems. Explicit casting fixes the issue.
104-
105-
= 1.0.2 August 5, 2024 =
106-
107-
* Load the meta_names cache during activation; don't let it expire.
108-
109-
= 1.0.0 July 3, 2024 =
110-
111-
* Allow searching on order number and transaction id fields.
112-
* Keep a cache of the meta_names for order custom fields to avoid repeating a very slow query.
113-
114-
= 0.5.0 July 1, 2024 =
115-
116-
* Improved compatibility with WooCommerce 9.0.0+.
117-
118-
* Add advice to readme.txt suggesting a new key on `wp_wc_orders_meta` for very large sites.
119-
120-
= 0.4.1 June 15, 2024 =
121-
122-
* Make the patch for slow order-page viewing compatible with WooCommerce 8.9.3.
123-
* Fix a presentation defect in the table-generation notify message.
124-
125-
= 0.4.0 May 10, 2024 =
126-
127-
Patch the query to look up distinct public meta_key values.
128-
129-
= 0.3.0 April 25, 2024 =
130-
131-
Use JOINs rather than IN to get better performance. Shorten the table and column names.
132-
133-
= 0.2.6 April 15, 2024 =
134-
135-
Notice, localization, phpcs:ignore
136-
137-
= 0.2.5 April 13, 2024 =
138-
139-
Background loading. Correct handling of HPOS variant queries (from the dropdown).
140-
141-
= 0.2.4 April 6, 2024 =
142-
143-
Ingest wp_wc_order_addresses info when creating trigram table, and handle pre-HPOS sites correctly.
144-
145-
= 0.2.2 April 1, 2024 =
146-
147-
Perform trigram inserts in batches.
148-
149-
= 0.2.1 March 26, 2024 =
150-
151-
Keep up with changes to orders.
152-
153-
= 0.1.4 March 23, 2024
154-
155-
Use trigrams, support both traditional and HPOS orders.
156-
157-
= 0.1.3 March 21, 2024
158-
159-
Build a text index table and use it.
160-
161-
= 0.1.2 November 24, 2023
162-
163-
Add support for speeding Subscriptions searches.
164-
165-
= 0.1.1 November 19, 2023
166-
167-
Birthday of Fast Woo Order Lookup. And, the birthday (in 1988) of the author's daughter Catharine.

0 commit comments

Comments
 (0)