@@ -72,6 +72,7 @@ const (
72
72
type query struct {
73
73
firstWord string
74
74
Query string
75
+ delimiter string
75
76
Line int
76
77
tp int
77
78
}
@@ -148,6 +149,9 @@ type tester struct {
148
149
149
150
// replace output result through --replace_regex /\.dll/.so/
150
151
replaceRegex []* ReplaceRegex
152
+
153
+ // the delimter for TiDB, default value is ";"
154
+ delimiter string
151
155
}
152
156
153
157
func newTester (name string ) * tester {
@@ -161,6 +165,7 @@ func newTester(name string) *tester {
161
165
t .enableWarning = false
162
166
t .enableConcurrent = false
163
167
t .enableInfo = false
168
+ t .delimiter = ";"
164
169
165
170
return t
166
171
}
@@ -462,10 +467,7 @@ func (t *tester) Run() error {
462
467
t .replaceColumn = append (t .replaceColumn , ReplaceColumn {col : colNr , replace : []byte (cols [i + 1 ])})
463
468
}
464
469
case Q_CONNECT :
465
- q .Query = strings .TrimSpace (q .Query )
466
- if q .Query [len (q .Query )- 1 ] == ';' {
467
- q .Query = q .Query [:len (q .Query )- 1 ]
468
- }
470
+ q .Query = strings .TrimSuffix (strings .TrimSpace (q .Query ), q .delimiter )
469
471
q .Query = q .Query [1 : len (q .Query )- 1 ]
470
472
args := strings .Split (q .Query , "," )
471
473
for i := range args {
@@ -476,16 +478,10 @@ func (t *tester) Run() error {
476
478
}
477
479
t .addConnection (args [0 ], args [1 ], args [2 ], args [3 ], args [4 ])
478
480
case Q_CONNECTION :
479
- q .Query = strings .TrimSpace (q .Query )
480
- if q .Query [len (q .Query )- 1 ] == ';' {
481
- q .Query = q .Query [:len (q .Query )- 1 ]
482
- }
481
+ q .Query = strings .TrimSuffix (strings .TrimSpace (q .Query ), q .delimiter )
483
482
t .switchConnection (q .Query )
484
483
case Q_DISCONNECT :
485
- q .Query = strings .TrimSpace (q .Query )
486
- if q .Query [len (q .Query )- 1 ] == ';' {
487
- q .Query = q .Query [:len (q .Query )- 1 ]
488
- }
484
+ q .Query = strings .TrimSuffix (strings .TrimSpace (q .Query ), q .delimiter )
489
485
t .disconnect (q .Query )
490
486
case Q_LET :
491
487
q .Query = strings .TrimSpace (q .Query )
@@ -622,7 +618,7 @@ func (t *tester) concurrentExecute(querys []query, wg *sync.WaitGroup, errOccure
622
618
return
623
619
}
624
620
625
- err := tt .stmtExecute (query . Query )
621
+ err := tt .stmtExecute (query )
626
622
if err != nil && len (t .expectedErrs ) > 0 {
627
623
for _ , tStr := range t .expectedErrs {
628
624
if strings .Contains (err .Error (), tStr ) {
@@ -650,43 +646,90 @@ func (t *tester) loadQueries() ([]query, error) {
650
646
651
647
seps := bytes .Split (data , []byte ("\n " ))
652
648
queries := make ([]query , 0 , len (seps ))
653
- newStmt := true
649
+ buffer := ""
654
650
for i , v := range seps {
655
651
v := bytes .TrimSpace (v )
656
652
s := string (v )
657
653
// we will skip # comment here
658
654
if strings .HasPrefix (s , "#" ) {
659
- newStmt = true
655
+ if len (buffer ) != 0 {
656
+ return nil , errors .Errorf ("Has remained message(%s) before COMMENTS" , buffer )
657
+ }
660
658
continue
661
659
} else if strings .HasPrefix (s , "--" ) {
662
- queries = append (queries , query {Query : s , Line : i + 1 })
663
- newStmt = true
660
+ if len (buffer ) != 0 {
661
+ return nil , errors .Errorf ("Has remained message(%s) before COMMANDS" , buffer )
662
+ }
663
+ q , err := ParseQuery (query {Query : s , Line : i + 1 , delimiter : t .delimiter })
664
+ if err != nil {
665
+ return nil , err
666
+ }
667
+ if q == nil {
668
+ continue
669
+ }
670
+ if q .tp == Q_DELIMITER {
671
+ tokens := strings .Split (strings .TrimSpace (q .Query ), " " )
672
+ if len (tokens ) == 0 {
673
+ return nil , errors .Errorf ("DELIMITER must be followed by a 'delimiter' character or string" )
674
+ }
675
+ t .delimiter = tokens [0 ]
676
+ } else {
677
+ queries = append (queries , * q )
678
+ }
679
+ continue
680
+ } else if strings .HasPrefix (strings .ToLower (strings .TrimSpace (s )), "delimiter " ) {
681
+ if len (buffer ) != 0 {
682
+ return nil , errors .Errorf ("Has remained message(%s) before DELIMITER COMMAND" , buffer )
683
+ }
684
+ tokens := strings .Split (strings .TrimSpace (s ), " " )
685
+ if len (tokens ) <= 1 {
686
+ return nil , errors .Errorf ("DELIMITER must be followed by a 'delimiter' character or string" )
687
+ }
688
+ t .delimiter = tokens [1 ]
664
689
continue
665
690
} else if len (s ) == 0 {
666
691
continue
667
692
}
668
693
669
- if newStmt {
670
- queries = append (queries , query {Query : s , Line : i + 1 })
671
- } else {
672
- lastQuery := queries [len (queries )- 1 ]
673
- lastQuery = query {Query : fmt .Sprintf ("%s\n %s" , lastQuery .Query , s ), Line : lastQuery .Line }
674
- queries [len (queries )- 1 ] = lastQuery
694
+ if len (buffer ) != 0 {
695
+ buffer += "\n "
675
696
}
697
+ buffer += s
698
+ for {
699
+ idx := strings .LastIndex (buffer , t .delimiter )
700
+ if idx == - 1 {
701
+ break
702
+ }
676
703
677
- // if the line has a ; in the end, we will treat new line as the new statement.
678
- newStmt = strings .HasSuffix (s , ";" )
704
+ queryStr := buffer [:idx + len (t .delimiter )]
705
+ buffer = buffer [idx + len (t .delimiter ):]
706
+ q , err := ParseQuery (query {Query : strings .TrimSpace (queryStr ), Line : i + 1 , delimiter : t .delimiter })
707
+ if err != nil {
708
+ return nil , err
709
+ }
710
+ if q == nil {
711
+ continue
712
+ }
713
+ queries = append (queries , * q )
714
+ }
715
+ // If has remained comments, ignore them.
716
+ if len (buffer ) != 0 && strings .HasPrefix (strings .TrimSpace (buffer ), "#" ) {
717
+ buffer = ""
718
+ }
679
719
}
680
-
681
- return ParseQueries (queries ... )
720
+ if len (buffer ) != 0 {
721
+ return nil , errors .Errorf ("Has remained text(%s) in file" , buffer )
722
+ }
723
+ return queries , nil
682
724
}
683
725
684
- func (t * tester ) stmtExecute (query string ) (err error ) {
726
+ func (t * tester ) stmtExecute (query query ) (err error ) {
685
727
if t .enableQueryLog {
686
- t .buf .WriteString (query )
728
+ t .buf .WriteString (query . Query )
687
729
t .buf .WriteString ("\n " )
688
730
}
689
- return t .executeStmt (query )
731
+
732
+ return t .executeStmt (strings .TrimSuffix (query .Query , query .delimiter ))
690
733
}
691
734
692
735
// checkExpectedError check if error was expected
@@ -784,7 +827,7 @@ func (t *tester) execute(query query) error {
784
827
}
785
828
786
829
offset := t .buf .Len ()
787
- err := t .stmtExecute (query . Query )
830
+ err := t .stmtExecute (query )
788
831
789
832
err = t .checkExpectedError (query , err )
790
833
if err != nil {
@@ -967,7 +1010,7 @@ func (t *tester) executeStmt(query string) error {
967
1010
}
968
1011
969
1012
if t .enableWarning {
970
- raw , err := t .curr .conn .QueryContext (context .Background (), "show warnings; " )
1013
+ raw , err := t .curr .conn .QueryContext (context .Background (), "show warnings" )
971
1014
if err != nil {
972
1015
return errors .Trace (err )
973
1016
}
0 commit comments