Skip to content

Instantly share code, notes, and snippets.

View systay's full-sized avatar

Andrés Taylor systay

View GitHub Profile
Error: A searchParam property was accessed directly with `searchParams.searchTerm`. `searchParams` should be unwrapped with `React.use()` before accessing its properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
at createUnhandledError (webpack-internal:///(app-pages-browser)/./node_modules/next/dist/client/components/errors/console-error.js:27:71)
at handleClientError (webpack-internal:///(app-pages-browser)/./node_modules/next/dist/client/components/errors/use-error-handler.js:45:56)
at console.error (webpack-internal:///(app-pages-browser)/./node_modules/next/dist/client/components/globals/intercept-console-error.js:47:56)
at console.eval [as error] (webpack-internal:///(app-pages-browser)/./node_modules/@sentry/core/build/esm/utils-hoist/instrument/console.js:44:20)
at warnForSyncAccess (webpack-internal:///(app-pages-browser)/./node_modules/next/dist/client/request/search-params.browser.dev.js:70:13)
at Object.get (webpack-internal:///(app-pages-browser)/./no

Query Analysis Report

Date of Analysis: 2024-01-01 01:02:03
Analyzed File: testdata/keys-log.json


Hot Queries

| Query | Execution Count | Total Time (s) | Avg Time (ms) | % of Total Time |

Keys analyzed 2024-11-05 13:39:55

File analyzed: go/summarize/testdata/keys-log.json

Tables

Table Name Reads Writes
customer 7 1
lineitem 17 1
nation 10 1
orders 11 1
@systay
systay / sqllancer.log.sql
Created June 4, 2024 06:05
Query log from running sqlancer against mysql
This file has been truncated, but you can view the full file.
2024-06-04T06:01:03.093029Z 8 Connect root@localhost on using TCP/IP
2024-06-04T06:01:03.094962Z 8 Query /* mysql-connector-java-8.0.30 (Revision: 1de2fe873fe26189564c030a343885011412976a) */SELECT @@session.auto_increment_increment AS auto_increment_increment, @@character_set_client AS character_set_client, @@character_set_connection AS character_set_connection, @@character_set_results AS character_set_results, @@character_set_server AS character_set_server, @@collation_server AS collation_server, @@collation_connection AS collation_connection, @@init_connect AS init_connect, @@interactive_timeout AS interactive_timeout, @@license AS license, @@lower_case_table_names AS lower_case_table_names, @@max_allowed_packet AS max_allowed_packet, @@net_write_timeout AS net_write_timeout, @@performance_schema AS performance_schema, @@sql_mode AS sql_mode, @@system_time_zone AS system_time_zone, @@time_zone AS time_zone, @@transaction_isolation AS transaction_isolation, @@wait_timeout AS wait_timeout
2024-06-0
@systay
systay / sqllancer.log.sql
Created June 4, 2024 06:05
Query log from running sqlancer against mysql
This file has been truncated, but you can view the full file.
2024-06-04T06:01:03.093029Z 8 Connect root@localhost on using TCP/IP
2024-06-04T06:01:03.094962Z 8 Query /* mysql-connector-java-8.0.30 (Revision: 1de2fe873fe26189564c030a343885011412976a) */SELECT @@session.auto_increment_increment AS auto_increment_increment, @@character_set_client AS character_set_client, @@character_set_connection AS character_set_connection, @@character_set_results AS character_set_results, @@character_set_server AS character_set_server, @@collation_server AS collation_server, @@collation_connection AS collation_connection, @@init_connect AS init_connect, @@interactive_timeout AS interactive_timeout, @@license AS license, @@lower_case_table_names AS lower_case_table_names, @@max_allowed_packet AS max_allowed_packet, @@net_write_timeout AS net_write_timeout, @@performance_schema AS performance_schema, @@sql_mode AS sql_mode, @@system_time_zone AS system_time_zone, @@time_zone AS time_zone, @@transaction_isolation AS transaction_isolation, @@wait_timeout AS wait_timeout
2024-06-0
Initial tree:
Horizon
└── Union (DISTINCT)
├── Horizon
│ └── Union (DISTINCT)
│ ├── Horizon
│ │ └── Union (DISTINCT)
│ │ ├── Horizon
│ │ │ └── Union (DISTINCT)
│ │ │ ├── Horizon
{
infSchema := map[string]map[string]query.Type{}
cols := map[string]query.Type{}
cols["USER"] = query.Type(6165)
cols["HOST"] = query.Type(6165)
cols["GRANTEE"] = query.Type(6165)
cols["GRANTEE_HOST"] = query.Type(6165)
cols["ROLE_NAME"] = query.Type(6165)
cols["ROLE_HOST"] = query.Type(6165)
cols["IS_GRANTABLE"] = query.Type(6165)
@systay
systay / tpc-h-8.sql
Created December 9, 2022 04:26
The TPC-H Query #8
SELECT O_YEAR, SUM(CASE WHEN NATION = 'BRAZIL' THEN VOLUME ELSE 0 END)/SUM(VOLUME) AS MKT_SHARE
FROM (SELECT datepart(yy,O_ORDERDATE) AS O_YEAR, L_EXTENDEDPRICE*(1-L_DISCOUNT) AS VOLUME, N2.N_NAME AS NATION
FROM PART, SUPPLIER, LINEITEM, ORDERS, CUSTOMER, NATION N1, NATION N2, REGION
WHERE P_PARTKEY = L_PARTKEY AND S_SUPPKEY = L_SUPPKEY AND L_ORDERKEY = O_ORDERKEY
AND O_CUSTKEY = C_CUSTKEY AND C_NATIONKEY = N1.N_NATIONKEY AND
N1.N_REGIONKEY = R_REGIONKEY AND R_NAME = 'AMERICA' AND S_NATIONKEY = N2.N_NATIONKEY
AND O_ORDERDATE BETWEEN '1995-01-01' AND '1996-12-31' AND P_TYPE= 'ECONOMY ANODIZED STEEL') AS ALL_NATIONS
GROUP BY O_YEAR
ORDER BY O_YEAR
| -> Table scan on <temporary> (actual time=0.001..0.002 rows=8 loops=1)
-> Aggregate using temporary table (actual time=0.635..0.637 rows=8 loops=1)
-> Nested loop left join (actual time=0.382..0.555 rows=8 loops=1)
-> Nested loop left join (actual time=0.375..0.532 rows=8 loops=1)
-> Nested loop left join (actual time=0.373..0.526 rows=8 loops=1)
-> Nested loop inner join (actual time=0.367..0.513 rows=8 loops=1)
-> Inner hash join (no condition) (actual time=0.207..0.218 rows=13 loops=1)
-> Table scan on i (cost=0.00 rows=0) (actual time=0.001..0.005 rows=13 loops=1)
-> Fill information schema table i (actual time=0.172..0.177 rows=13 loops=1)
-> Hash
--- FAIL: TestMultipleUpdatesFromDifferentShards/3 (0.04s)
uptate_controller_test.go:170:
Error Trace: uptate_controller_test.go:170
Error: Not equal:
expected: 2
actual : 1
Test: TestMultipleUpdatesFromDifferentShards/3
Messages: signal required
uptate_controller_test.go:172:
Error Trace: uptate_controller_test.go:172