Remove trailing whitespace

Removed trailing whitespace in tests and build scripts.
This commit is contained in:
Markus Mäkelä
2017-05-26 14:29:28 +03:00
parent 5c512a3945
commit 957b50c811
54 changed files with 141 additions and 141 deletions

View File

@ -1,4 +1,4 @@
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 int, fl int);
select sleep(5);
delete from t1 where x1 like '_';

View File

@ -1,3 +1,3 @@
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 int, fl int);
SELECT fl FROM t1;

View File

@ -1,4 +1,4 @@
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 int, fl int);
select sleep(5);
SELECT fl FROM t1;

View File

@ -1,4 +1,4 @@
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 int, fl int);
select sleep(5);
delete from t1 where x1=0;

View File

@ -1,4 +1,4 @@
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 INT, fl INT);
DELETE FROM t1 WHERE x1=0;
SELECT fl FROM t1 WHERE x1=0;

View File

@ -1,4 +1,4 @@
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 int, fl int);
delete from t1;
UPDATE t1 SET fl=1;

View File

@ -1,4 +1,4 @@
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 int, fl int);
select sleep(5);
delete from t1;

View File

@ -1,4 +1,4 @@
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 int, fl int);
select sleep(5);
SELECT fl FROM t1;